home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 4: GNU Archives / Linux Cubed Series 4 - GNU Archives.iso / gnu / gawk-3.000 / gawk-3 / gawk-3.0.0 / test / sclifin.awk < prev    next >
Encoding:
AWK Script  |  1995-08-16  |  68 b   |  8 lines

  1. BEGIN {
  2.     j = 4
  3.     if ("foo" in j)
  4.         print "ouch"
  5.     else
  6.         print "ok"
  7. }
  8.